From 205eba7a0582accc77f4886aa05eb26c3a47c7d8 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 30 Jan 2006 05:05:07 +0000 Subject: [PATCH] Move the last button to the left where it does not affect the positioning 2006-01-30 Matthias Clasen * gtk/gtkassistant.c (gtk_assistant_init): Move the last button to the left where it does not affect the positioning of forward/back. --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ gtk/gtkassistant.c | 4 ++-- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5e01b21c8f..c425d7ff11 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-01-30 Matthias Clasen + + * gtk/gtkassistant.c (gtk_assistant_init): Move the + last button to the left where it does not affect + the positioning of forward/back. + 2006-01-29 Matthias Clasen More GtkAssistant work, by Carlos Garnacho. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 5e01b21c8f..c425d7ff11 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2006-01-30 Matthias Clasen + + * gtk/gtkassistant.c (gtk_assistant_init): Move the + last button to the left where it does not affect + the positioning of forward/back. + 2006-01-29 Matthias Clasen More GtkAssistant work, by Carlos Garnacho. diff --git a/gtk/gtkassistant.c b/gtk/gtkassistant.c index d13200a7e5..b6e62bc50c 100644 --- a/gtk/gtkassistant.c +++ b/gtk/gtkassistant.c @@ -707,9 +707,9 @@ gtk_assistant_init (GtkAssistant *assistant) if (!alternative_button_order (assistant)) { gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0); - gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->forward, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->back, FALSE, FALSE, 0); + gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0); } @@ -717,9 +717,9 @@ gtk_assistant_init (GtkAssistant *assistant) { gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->close, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->cancel, FALSE, FALSE, 0); + gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->back, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->forward, FALSE, FALSE, 0); - gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->last, FALSE, FALSE, 0); gtk_box_pack_end (GTK_BOX (priv->action_area), assistant->apply, FALSE, FALSE, 0); } -- 2.30.2